home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / pgp20src.zip / STDLIB.H < prev    next >
C/C++ Source or Header  |  1992-08-11  |  200b  |  14 lines

  1. /*
  2.  * Fake stdlib.h for old systems
  3.  */
  4.  
  5. #ifndef NULL
  6. #define NULL (char *)0
  7. #endif
  8. typedef unsigned size_t;
  9. char *getenv();
  10. char *malloc();
  11. char *calloc();
  12. char *realloc();
  13. long atol();
  14.